home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Animacje, filmy i prezentacje / Modelowanie 3D / K-3D 0.6.5.0 / k3d-all-in-one-setup-0.6.5.0.exe / aqsis-setup-1.1.0-2006-12-09.exe / include / aqsis / librib.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-03-24  |  13.3 KB  |  196 lines

  1. #ifndef LIBRIB_H
  2. #define LIBRIB_H
  3.  
  4. #include <iostream>
  5. #include <string>
  6. #include <stdio.h>
  7.  
  8. #include "ri.h"
  9.  
  10. namespace librib
  11. {
  12.  
  13. /// Provides an abstract base class for objects that implement the Renderman Interface
  14. class RendermanInterface
  15. {
  16.     public:
  17.         virtual ~RendermanInterface()
  18.         {
  19.         };
  20.         // The standard set of Renderman Interface types
  21.         typedef bool RtBoolean;
  22.         typedef int RtInt;
  23.         typedef float RtFloat;
  24.         typedef char* RtToken;
  25.         typedef RtFloat RtColor[ 3 ];
  26.         typedef RtFloat RtPoint[ 3 ];
  27.         typedef RtFloat RtMatrix[ 4 ][ 4 ];
  28.         typedef RtFloat RtBasis[ 4 ][ 4 ];
  29.         typedef RtFloat RtBound[ 6 ];
  30.         typedef char* RtString;
  31.         typedef void* RtPointer;
  32.         typedef void RtVoid;
  33.         typedef RtFloat ( *RtFilterFunc ) ( RtFloat, RtFloat, RtFloat, RtFloat );
  34.         typedef RtFloat ( *RtFloatFunc ) ();
  35.         typedef RtVoid ( *RtFunc ) ();
  36.         typedef RtVoid ( *RtErrorFunc ) ( RtInt code, RtInt severity, const RtToken message );
  37.         typedef RtPointer RtObjectHandle;
  38.         typedef RtPointer RtLightHandle;
  39.  
  40.         virtual    RtLightHandle RiAreaLightSourceV( RtToken name, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  41.         virtual    RtVoid    RiAtmosphereV( RtToken name, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  42.         virtual    RtVoid    RiAttributeBegin() = 0;
  43.         virtual    RtVoid    RiAttributeEnd() = 0;
  44.         virtual    RtVoid    RiAttributeV( RtToken name, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  45.         virtual    RtVoid    RiBasis( RtBasis ubasis, RtInt ustep, RtBasis vbasis, RtInt vstep ) = 0;
  46.         virtual    RtVoid    RiBegin( RtToken name ) = 0;
  47.         virtual    RtFloat RiBesselFilter( RtFloat x, RtFloat y, RtFloat xwidth, RtFloat ywidth ) = 0;
  48.         virtual RtVoid RiBlobbyV( RtInt nleaf, RtInt ncode, RtInt code[],
  49.                                   RtInt nflt, RtFloat flt[],
  50.                                   RtInt nstr, RtToken str[],
  51.                                   RtInt n, RtToken tokens[], RtPointer parms[] ) = 0;
  52.         virtual    RtVoid    RiBound( RtBound bound ) = 0;
  53.         virtual    RtFloat RiBoxFilter( RtFloat x, RtFloat y, RtFloat xwidth, RtFloat ywidth ) = 0;
  54.         virtual    RtFloat RiMitchellFilter( RtFloat x, RtFloat y, RtFloat xwidth, RtFloat ywidth ) = 0;
  55.         virtual    RtFloat RiCatmullRomFilter( RtFloat x, RtFloat y, RtFloat xwidth, RtFloat ywidth ) = 0;
  56.         virtual    RtVoid    RiClipping( RtFloat cnear, RtFloat cfar ) = 0;
  57.         virtual    RtVoid    RiColor( RtColor Cq ) = 0;
  58.         virtual    RtVoid    RiColorSamples( RtInt N, RtFloat *nRGB, RtFloat *RGBn ) = 0;
  59.         virtual    RtVoid    RiConcatTransform( RtMatrix transform ) = 0;
  60.         virtual    RtVoid    RiConeV( RtFloat height, RtFloat radius, RtFloat thetamax, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  61.         virtual    RtVoid    RiCoordinateSystem( RtToken space ) = 0;
  62.         virtual    RtVoid    RiCoordSysTransform( RtToken space ) = 0;
  63.         virtual    RtVoid    RiCropWindow( RtFloat left, RtFloat right, RtFloat top, RtFloat bottom ) = 0;
  64.         virtual    RtVoid    RiCylinderV( RtFloat radius, RtFloat zmin, RtFloat zmax, RtFloat thetamax, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  65.         virtual    RtToken    RiDeclare( RtString name, RtString declaration ) = 0;
  66.         virtual    RtVoid    RiDeformationV( RtToken name, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  67.         virtual    RtVoid    RiDepthOfField( RtFloat fstop, RtFloat focallength, RtFloat focaldistance ) = 0;
  68.         virtual    RtVoid    RiDetail( RtBound bound ) = 0;
  69.         virtual    RtVoid    RiDetailRange( RtFloat offlow, RtFloat onlow, RtFloat onhigh, RtFloat offhigh ) = 0;
  70.         virtual    RtFloat RiDiskFilter( RtFloat x, RtFloat y, RtFloat xwidth, RtFloat ywidth ) = 0;
  71.         virtual    RtVoid    RiDiskV( RtFloat height, RtFloat radius, RtFloat thetamax, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  72.         virtual    RtVoid    RiDisplacementV( RtToken name, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  73.         virtual    RtVoid    RiDisplayV( RtToken name, RtToken type, RtToken mode, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  74.         virtual    RtVoid    RiEnd() = 0;
  75.         virtual    RtVoid    RiIfBegin(RtString condition) = 0;
  76.         virtual    RtVoid    RiIfEnd() = 0;
  77.         virtual    RtVoid    RiElse() = 0;
  78.         virtual    RtVoid    RiElseIf(RtString condition) = 0;
  79.         virtual    RtVoid    RiErrorAbort( RtInt code, RtInt severity, RtString  message ) = 0;
  80.         //    virtual    RtVoid    RiErrorHandler(RtErrorFunc handler) = 0;
  81.         virtual    RtVoid    RiErrorIgnore( RtInt code, RtInt severity, RtString message ) = 0;
  82.         virtual    RtVoid    RiErrorPrint( RtInt code, RtInt severity, RtString message ) = 0;
  83.         virtual    RtVoid    RiExposure( RtFloat gain, RtFloat gamma ) = 0;
  84.         virtual    RtVoid    RiExteriorV( RtToken name, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  85.         virtual    RtVoid    RiFormat( RtInt xresolution, RtInt yresolution, RtFloat pixelaspectratio ) = 0;
  86.         virtual    RtVoid    RiFrameAspectRatio( RtFloat frameratio ) = 0;
  87.         virtual    RtVoid    RiFrameBegin( RtInt number ) = 0;
  88.         virtual    RtVoid    RiFrameEnd() = 0;
  89.         virtual    RtFloat RiGaussianFilter( RtFloat x, RtFloat y, RtFloat xwidth, RtFloat ywidth ) = 0;
  90.         virtual    RtVoid    RiGeneralPolygonV( RtInt nloops, RtInt nverts[], RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  91.         virtual    RtVoid    RiGeometricApproximation( RtToken type, RtFloat value ) = 0;
  92.         virtual    RtVoid    RiGeometryV( RtToken type, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  93.         virtual    RtVoid    RiHiderV( RtToken type, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  94.         virtual    RtVoid    RiHyperboloidV( RtPoint point1, RtPoint point2, RtFloat thetamax, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  95.         virtual    RtVoid    RiIdentity() = 0;
  96.         virtual    RtVoid    RiIlluminate( RtLightHandle light, RtBoolean onoff ) = 0;
  97.         virtual    RtVoid    RiImagerV( RtToken name, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  98.         virtual    RtVoid    RiInteriorV( RtToken name, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  99.         virtual    RtLightHandle RiLightSourceV( RtToken name, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  100.         virtual    RtVoid    RiMakeBumpV( RtString imagefile, RtString bumpfile, RtToken swrap, RtToken twrap, RtFilterFunc filterfunc, RtFloat swidth, RtFloat twidth, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  101.         virtual    RtVoid    RiMakeCubeFaceEnvironmentV( RtString px, RtString nx, RtString py, RtString ny, RtString pz, RtString nz, RtString reflfile, RtFloat fov, RtFilterFunc filterfunc, RtFloat swidth, RtFloat twidth, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  102.         virtual    RtVoid    RiMakeLatLongEnvironmentV( RtString imagefile, RtString reflfile, RtFilterFunc filterfunc, RtFloat swidth, RtFloat twidth, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  103.         virtual    RtVoid    RiMakeShadowV( RtString picfile, RtString shadowfile, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  104.         virtual    RtVoid    RiMakeTextureV( RtString imagefile, RtString texturefile, RtToken swrap, RtToken twrap, RtFilterFunc filterfunc, RtFloat swidth, RtFloat twidth, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  105.         virtual    RtVoid    RiMakeOcclusionV( RtInt npics, RtString *picfile, RtString shadowfile, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  106.         virtual    RtVoid    RiMatte( RtBoolean onoff ) = 0;
  107.         virtual    RtVoid    RiMotionBeginV( RtInt N, RtFloat times[] ) = 0;
  108.         virtual    RtVoid    RiMotionEnd() = 0;
  109.         virtual    RtVoid    RiNuPatchV( RtInt nu, RtInt uorder, RtFloat uknot[], RtFloat umin, RtFloat umax, RtInt nv, RtInt vorder, RtFloat vknot[], RtFloat vmin, RtFloat vmax, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  110.         virtual    RtObjectHandle    RiObjectBegin() = 0;
  111.         virtual    RtVoid    RiObjectEnd() = 0;
  112.         virtual    RtVoid    RiObjectInstance( RtObjectHandle handle ) = 0;
  113.         virtual    RtVoid    RiOpacity( RtColor Os ) = 0;
  114.         virtual    RtVoid    RiOptionV( RtToken name, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  115.         virtual    RtVoid    RiOrientation( RtToken orientation ) = 0;
  116.         virtual    RtVoid    RiParaboloidV( RtFloat rmax, RtFloat zmin, RtFloat zmax, RtFloat thetamax, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  117.         virtual    RtVoid    RiPatchMeshV( RtToken type, RtInt nu, RtToken uwrap, RtInt nv, RtToken vwrap, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  118.         virtual    RtVoid    RiPatchV( RtToken type, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  119.         virtual    RtVoid    RiPerspective( RtFloat fov ) = 0;
  120.         virtual    RtVoid    RiPixelFilter( RtFilterFunc function, RtFloat xwidth, RtFloat ywidth ) = 0;
  121.         virtual    RtVoid    RiPixelSamples( RtFloat xsamples, RtFloat ysamples ) = 0;
  122.         virtual    RtVoid    RiPixelVariance( RtFloat variance ) = 0;
  123.         virtual    RtVoid    RiCurvesV( RtToken type, RtInt ncurves, RtInt nvertices[], RtToken wrap,
  124.                                   RtInt n, RtToken tokens[], RtPointer values[] ) = 0;
  125.         virtual    RtVoid    RiPointsV( RtInt vertices, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  126.         virtual    RtVoid    RiPointsGeneralPolygonsV( RtInt npolys, RtInt nloops[], RtInt nverts[], RtInt verts[], RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  127.         virtual    RtVoid    RiPointsPolygonsV( RtInt npolys, RtInt nverts[], RtInt verts[], RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  128.         virtual    RtVoid    RiPolygonV( RtInt nvertices, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  129.         virtual    RtVoid    RiProcedural( RtPointer data, RtBound bound, RtFunc refineproc, RtFunc freeproc ) = 0;
  130.         virtual    RtVoid    RiProjectionV( RtToken name, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  131.         virtual    RtVoid    RiQuantize( RtToken type, RtInt one, RtInt min, RtInt max, RtFloat ditheramplitude ) = 0;
  132.         virtual    RtVoid    RiReadArchive( RtToken data, RtArchiveCallback callback ) = 0;
  133.         virtual    RtVoid    RiRelativeDetail( RtFloat relativedetail ) = 0;
  134.         virtual    RtVoid    RiReverseOrientation() = 0;
  135.         virtual    RtVoid    RiRotate( RtFloat angle, RtFloat dx, RtFloat dy, RtFloat dz ) = 0;
  136.         virtual    RtVoid    RiScale( RtFloat sx, RtFloat sy, RtFloat sz ) = 0;
  137.         virtual    RtVoid    RiScreenWindow( RtFloat left, RtFloat right, RtFloat bottom, RtFloat top ) = 0;
  138.         virtual    RtVoid    RiShadingInterpolation( RtToken type ) = 0;
  139.         virtual    RtVoid    RiShadingRate( RtFloat size ) = 0;
  140.         virtual    RtVoid    RiShutter( RtFloat opentime, RtFloat closetime ) = 0;
  141.         virtual    RtVoid    RiSides( RtInt nsides ) = 0;
  142.         virtual    RtFloat RiSincFilter( RtFloat x, RtFloat y, RtFloat xwidth, RtFloat ywidth ) = 0;
  143.         virtual    RtVoid    RiSkew( RtFloat angle, RtFloat dx1, RtFloat dy1, RtFloat dz1, RtFloat dx2, RtFloat dy2, RtFloat dz2 ) = 0;
  144.         virtual    RtVoid    RiSolidBegin( RtToken type ) = 0;
  145.         virtual    RtVoid    RiSolidEnd() = 0;
  146.         virtual    RtVoid    RiSphereV( RtFloat radius, RtFloat zmin, RtFloat zmax, RtFloat thetamax, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  147.         virtual    RtVoid    RiSubdivisionMeshV( RtToken scheme, RtInt nfaces, RtInt nvertices[], RtInt vertices[], RtInt ntags, RtToken tags[], RtInt nargs[], RtInt intargs[], RtFloat floatargs[], RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  148.         virtual    RtVoid    RiSurfaceV( RtToken name, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  149.         virtual    RtVoid    RiTextureCoordinates( RtFloat s1, RtFloat t1, RtFloat s2, RtFloat t2, RtFloat s3, RtFloat t3, RtFloat s4, RtFloat t4 ) = 0;
  150.         virtual    RtVoid    RiTorusV( RtFloat majorrad, RtFloat minorrad, RtFloat phimin, RtFloat phimax, RtFloat thetamax, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  151.         virtual    RtVoid    RiTransform( RtMatrix transform ) = 0;
  152.         virtual    RtVoid    RiTransformBegin() = 0;
  153.         virtual    RtVoid    RiTransformEnd() = 0;
  154.         virtual    RtPoint* RiTransformPoints( RtToken fromspace, RtToken tospace, RtInt npoints, RtPoint points[] ) = 0;
  155.         virtual    RtVoid    RiTranslate( RtFloat dx, RtFloat dy, RtFloat dz ) = 0;
  156.         virtual    RtFloat RiTriangleFilter( RtFloat x, RtFloat y, RtFloat xwidth, RtFloat ywidth ) = 0;
  157.         virtual    RtVoid    RiTrimCurve( RtInt nloops, RtInt ncurves[], RtInt order[], RtFloat knot[], RtFloat min[], RtFloat max[], RtInt n[], RtFloat u[], RtFloat v[], RtFloat w[] ) = 0;
  158.         virtual    RtVoid    RiWorldBegin() = 0;
  159.         virtual    RtVoid    RiWorldEnd() = 0;
  160.         virtual RtVoid    RiShaderLayerV( RtToken type, RtToken name, RtToken layername, RtInt count, RtToken tokens[], RtPointer values[] ) = 0;
  161.         virtual RtVoid    RiConnectShaderLayers( RtToken type, RtToken layer1, RtToken variable1, RtToken layer2, RtToken variable2 ) = 0;
  162.  
  163.         virtual RtFilterFunc    GetFilterFunction( RtToken type ) = 0;
  164.         virtual RtBasis*    GetBasisMatrix( RtToken type ) = 0;
  165.         virtual    RtFunc    GetProceduralFunction( RtToken type ) = 0;
  166. };
  167.  
  168.  
  169. /// Initializes the parser and callback object with a set of standard declarations
  170. extern "C"
  171. {
  172.  
  173.     void StandardDeclarations( RendermanInterface* CallbackInterface );
  174.  
  175.     void CleanupDeclarations( RendermanInterface& CallbackInterface );
  176.  
  177.     /// Parses an input stream, using the supplied callback object and sending error data to the supplied output stream
  178.     bool Parse( FILE *InputStream, const std::string StreamName, RendermanInterface& CallbackInterface, std::ostream& ErrorStream, RtArchiveCallback callback);
  179.     /// Parse the stream held in decoder, does not close the stream
  180.     class CqRibBinaryDecoder;
  181.     bool ParseOpenStream( CqRibBinaryDecoder *decoder, const std::string StreamName, RendermanInterface& CallbackInterface, std::ostream& ErrorStream, RtArchiveCallback callback);
  182.     /// Resets the state of the parser, clearing any symbol tables, etc.
  183.     void ResetParser();
  184.     //
  185.     /// Setup the defaut setting for the archive searchpath, automatically updated when an appropriate RiOption is seen.
  186.     void UpdateArchivePath( std::string strPath );
  187.  
  188.     int AppendFrames(const char* frames);
  189.     void ClearFrames();
  190. }
  191.  
  192. }
  193. ; // namespace librib
  194.  
  195. #endif // LIBRIB_H
  196.